home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / gfx / fract / lfracs.lha / LFracs-Source.lha / LFracs-Source / StdInc.h < prev   
C/C++ Source or Header  |  1997-01-08  |  787b  |  30 lines

  1. /* StdInc.h */
  2.  
  3. #include <exec/types.h>
  4. #include <exec/memory.h>
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <math.h>
  9. #include <dos/dos.h>
  10. #include <graphics/gfxbase.h>
  11. #include <intuition/gadgetclass.h>
  12. #include <intuition/intuitionbase.h>
  13. #include <clib/exec_protos.h>
  14. #include <clib/dos_protos.h>
  15. #include <clib/intuition_protos.h>
  16. #include <clib/graphics_protos.h>
  17. #include <clib/utility_protos.h>
  18. #include <clib/mathtrans_protos.h>
  19.  
  20. extern struct ExecBase *SysBase;
  21. struct IntuitionBase   *IntuitionBase;
  22. struct GfxBase         *GfxBase;
  23. struct DosLibrary      *DosLibrary;
  24. struct Library         *MathBase,*MathTransBase,
  25.                        *GadToolsBase,
  26.                        *AslBase,*UtilityBase,*LocaleBase;
  27.  
  28. #define PUBLIC
  29. #define PRIVATE static
  30.